b220cf6041e96c73d63487113791eb5e120b9eda,ij/macro/Functions.java,Functions,makeOval,#,724

Before Change


	void makeOval() {
		Roi previousRoi = getImage().getRoi();
		if (shiftKeyDown||altKeyDown) getImage().saveRoi();
		IJ.makeOval((int)Math.round(getFirstArg()), (int)Math.round(getNextArg()),
			(int)Math.round(getNextArg()), (int)Math.round(getLastArg()));
		Roi roi = getImage().getRoi();
		if (previousRoi!=null && roi!=null)

After Change


	void makeOval() {
		Roi previousRoi = getImage().getRoi();
		if (shiftKeyDown||altKeyDown) getImage().saveRoi();
		IJ.makeOval(getFirstArg(), getNextArg(), getNextArg(), getLastArg());
		Roi roi = getImage().getRoi();
		if (previousRoi!=null && roi!=null)
			updateRoi(roi);